home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / Open Transport 1.3 / Open Transport SDK / Open Tpt Protocol Developer / Samples / Configurators / TMP_GlobalVar.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-30  |  359 b   |  17 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:         TMP_GlobalVar.c
  3.  
  4.     Contains:    Our global variable.  This is only used for non-68K builds.  In order
  5.                 to work on Mac OS 8, this variable needs to be global so that all address
  6.                 spaces know how to clone from a control stream.
  7.  
  8. */
  9.  
  10. #ifndef __TMP_CONFIG__
  11. #include "TMP_Config.h"
  12. #endif
  13.  
  14. #if !GENERATING68K
  15.     MyGlobal    gTMPGlobal                = { 0 };
  16. #endif
  17.